home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
cstdio.arc
/
INCLUDE.ARC
/
MSSTAT.H
< prev
next >
Wrap
C/C++ Source or Header
|
1984-07-25
|
465b
|
21 lines
/* msstat.h - MS-DOS stat definitions.
G. R. Mansfield. 84/07/25.
Ver 1.0-4725.
*/
#define SA_AM 0x3F /* attribute mask */
#define SA_RO 0x01 /* read only */
#define SA_HD 0x02 /* hidden file */
#define SA_SY 0x04 /* system file */
#define SA_VL 0x08 /* volume label */
#define SA_SD 0x10 /* sub-directory */
#define SA_AC 0x20 /* archive */
struct msstat {
BYTE st_attr;
int st_time;
int st_date;
long st_size;
char st_name[13];
};